-
Notifications
You must be signed in to change notification settings - Fork 237
feat(docs): generating test index #3052
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Attila Mészáros <[email protected]>
Signed-off-by: Attila Mészáros <[email protected]>
Signed-off-by: Attila Mészáros <[email protected]>
Signed-off-by: Attila Mészáros <[email protected]>
Signed-off-by: Attila Mészáros <[email protected]>
|
An improvement would be also to have categories based on packages, that we can do as a separate PR. |
xstefank
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very nice feature, well done!
| description = | ||
| "Demonstrates how to implement cleanup handlers (finalizers) for built-in Kubernetes" | ||
| + " resources like Service and Pod. These resources don't use generation the same way" | ||
| + " as custom resources, so this sample shows the proper approach to handle their" | ||
| + " lifecycle and cleanup logic.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are past JDK 17 so I would rewrite these all to """
| description = | |
| "Demonstrates how to implement cleanup handlers (finalizers) for built-in Kubernetes" | |
| + " resources like Service and Pod. These resources don't use generation the same way" | |
| + " as custom resources, so this sample shows the proper approach to handle their" | |
| + " lifecycle and cleanup logic.") | |
| description = """ | |
| Demonstrates how to implement cleanup handlers (finalizers) for built-in Kubernetes | |
| resources like Service and Pod. These resources don't use generation the same way | |
| as custom resources, so this sample shows the proper approach to handle their | |
| lifecycle and cleanup logic.""") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ahh, yes will do, thx!


Added sample screenshots.